diff --git a/CHANGELOG.md b/CHANGELOG.md index df5537e7c..134d1f694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,42 @@ +## 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 diff --git a/Makefile b/Makefile index 24f150ecb..ae542a1f1 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ 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 @@ -106,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 @@ -125,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 @@ -142,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 @@ -206,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 @@ -224,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 @@ -251,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 @@ -286,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 @@ -296,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 @@ -313,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 @@ -335,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 29f1ece24..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 @@ -351,27 +368,35 @@ Parallel processing will also be automatic if the input file is in Geobuf format the single specified tile at that zoom level. If you know the precision to which you want your data to be represented, -this table shows the approximate precision corresponding to various +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) ----------- | -------------- | ------------- -`-z0` | 32000 ft | 10000 m -`-z1` | 16000 ft | 5000 m -`-z2` | 8000 ft | 2500 m -`-z3` | 4000 ft | 1250 m -`-z4` | 2000 ft | 600 m -`-z5` | 1000 ft | 300 m -`-z6` | 500 ft | 150 m -`-z7` | 250 ft | 80 m -`-z8` | 125 ft | 40 m -`-z9` | 64 ft | 20 m -`-z10` | 32 ft | 10 m -`-z11` | 16 ft | 5 m -`-z12` | 8 ft | 2 m -`-z13` | 4 ft | 1 m -`-z14` | 2 ft | 0.5 m -`-z15` | 1 ft | 0.25 m +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 @@ -456,7 +481,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate * `-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 @@ -469,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 @@ -508,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. @@ -617,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 ------------------------- @@ -777,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 @@ -786,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 b946e07cf..a5418a123 100644 --- a/dirtiles.cpp +++ b/dirtiles.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include #include "jsonpull/jsonpull.h" @@ -84,7 +85,7 @@ void check_dir(const char *dir, char **argv, 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(); @@ -101,14 +102,14 @@ void check_dir(const char *dir, char **argv, 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); diff --git a/dirtiles.hpp b/dirtiles.hpp index 52b7f47b6..6855f9aab 100644 --- a/dirtiles.hpp +++ b/dirtiles.hpp @@ -42,7 +42,7 @@ struct zxy { } }; -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/geojson.cpp b/geojson.cpp index 67fe65352..0eae17c4c 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -269,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 15704ef8c..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) { 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 eeda5c325..ae41d8254 100644 --- a/main.cpp +++ b/main.cpp @@ -1135,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; @@ -2329,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; } @@ -2569,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}, @@ -2626,7 +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, '?'}, + {"help", no_argument, 0, 'H'}, {0, 0, 0, 0}, }; @@ -2670,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) { @@ -2961,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; @@ -3004,7 +3007,7 @@ int main(int argc, char **argv) { break; default: { - if (i != '?') { + if (i != 'H' && i != '?') { fprintf(stderr, "Unknown option -%c\n", i); } int width = 7 + strlen(argv[0]); @@ -3034,7 +3037,11 @@ int main(int argc, char **argv) { width = 8; } fprintf(stderr, "\n"); - exit(EXIT_FAILURE); + if (i == 'H') { + exit(EXIT_SUCCESS); + } else { + exit(EXIT_FAILURE); + } } } } @@ -3173,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/man/tippecanoe.1 b/man/tippecanoe.1 index c6865f60b..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 @@ -781,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 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 0d94d4c3f..a430a72fa 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -130,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(); @@ -270,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; @@ -380,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); } @@ -500,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; @@ -515,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/options.hpp b/options.hpp index e801bf089..93336d777 100644 --- a/options.hpp +++ b/options.hpp @@ -28,6 +28,7 @@ #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 ac2dc8b90..a29516a53 100644 --- a/projection.cpp +++ b/projection.cpp @@ -22,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. @@ -40,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; } diff --git a/serial.cpp b/serial.cpp index 98ac1ef0a..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) { @@ -359,8 +364,8 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox *(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; @@ -374,8 +379,8 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox geom[i].x = std::round(x * scale); geom[i].y = std::round(y * scale); } else { - geom[i].x = x >> geometry_scale; - geom[i].y = y >> geometry_scale; + geom[i].x = SHIFT_RIGHT(x); + geom[i].y = SHIFT_RIGHT(y); } } } @@ -412,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; @@ -426,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; @@ -460,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_index(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()); @@ -633,7 +638,6 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { sf.full_values.erase(sf.full_values.begin() + i); continue; } - } if (!sst->filters) { @@ -663,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/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/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json index d5a4eb721..8e6d93d0b 100644 --- a/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json +++ b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json @@ -3,6 +3,7 @@ "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", diff --git a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json index 70fded447..a2cbca0fe 100644 --- a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json +++ b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json @@ -3,6 +3,7 @@ "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", 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/out/-z6.json b/tests/minzoom/out/-z6.json index 7854f3b09..44aff2b99 100644 --- a/tests/minzoom/out/-z6.json +++ b/tests/minzoom/out/-z6.json @@ -3,6 +3,7 @@ "center": "6.000000,6.000000,6", "description": "tests/minzoom/out/-z6.json.check.mbtiles", "format": "pbf", +"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", 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/out/-z1.json b/tests/multilinestring/out/-z1.json index f50e5a87b..185f0f7a2 100644 --- a/tests/multilinestring/out/-z1.json +++ b/tests/multilinestring/out/-z1.json @@ -3,6 +3,7 @@ "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", 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 index 02f14ea96..31f9049ec 100644 --- a/tests/muni/out/-Z11_-z11_--hilbert.json +++ b/tests/muni/out/-Z11_-z11_--hilbert.json @@ -3,6 +3,7 @@ "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", 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 index 8b55988b7..f534393f4 100644 --- a/tests/muni/out/-z0_--coalesce_--reorder.json +++ b/tests/muni/out/-z0_--coalesce_--reorder.json @@ -3,6 +3,7 @@ "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", 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 35f7b6307..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", 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/out/-z0.json b/tests/stringid/out/-z0.json index 7ae6444fe..b6f3356c8 100644 --- a/tests/stringid/out/-z0.json +++ b/tests/stringid/out/-z0.json @@ -3,6 +3,7 @@ "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", diff --git a/tests/stringid/out/-z0_--use-attribute-for-id_special.json b/tests/stringid/out/-z0_--use-attribute-for-id_special.json index c9951624c..7bf36be48 100644 --- a/tests/stringid/out/-z0_--use-attribute-for-id_special.json +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special.json @@ -3,6 +3,7 @@ "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", 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 index 24af47942..50e6540aa 100644 --- a/tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-X.json @@ -3,6 +3,7 @@ "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", 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 index d6f05c6aa..3ed67e7c2 100644 --- a/tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-xspecial.json @@ -3,6 +3,7 @@ "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", 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 index b9a615d09..0d454f1ad 100644 --- a/tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json +++ b/tests/stringid/out/-z0_--use-attribute-for-id_special_-yother.json @@ -3,6 +3,7 @@ "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", diff --git a/tests/stringid/out/-z0_-aI.json b/tests/stringid/out/-z0_-aI.json index d74e0457e..00e06148b 100644 --- a/tests/stringid/out/-z0_-aI.json +++ b/tests/stringid/out/-z0_-aI.json @@ -3,6 +3,7 @@ "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", 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 index aad76e03b..9970acd39 100644 --- a/tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json +++ b/tests/stringid/out/-z0_-aI_--use-attribute-for-id_special.json @@ -3,6 +3,7 @@ "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", 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 45a562b0a..c97295c6c 100644 --- a/text.cpp +++ b/text.cpp @@ -133,3 +133,39 @@ int integer_zoom(std::string where, std::string text) { } 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 2a1c62fde..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 @@ -409,7 +410,7 @@ struct reader *begin_reading(char *fname) { 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) { @@ -619,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()); @@ -824,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) { @@ -912,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: @@ -1079,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; @@ -1092,6 +1110,11 @@ int main(int argc, char **argv) { name = set_name; } + 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; @@ -1101,7 +1124,7 @@ int main(int argc, char **argv) { } } - 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"); + 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 72672f741..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); } } } @@ -1760,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]; @@ -1786,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"); @@ -1857,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; } } @@ -1886,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]) { @@ -1900,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]) { @@ -1914,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; } } @@ -1937,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; @@ -1956,6 +1968,12 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } 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; @@ -1985,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]; @@ -2067,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) { @@ -2180,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 4949e3c19..8f9c723f6 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v1.33.0" +#define VERSION "v1.36.0" #endif